home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / clipmarks-3.5.0-fx.xpi / chrome / clipmarks.jar / content / save-overlimit.xul < prev    next >
Extensible Markup Language  |  2007-12-05  |  860b  |  30 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <dialog id="Clipmarks_SaveOverlimitDialog" title="Private saving only"
  6.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         buttons="accept,cancel" buttonlabelaccept="Save Privately" buttonlabelcancel="Edit Clip"
  8.         ondialogaccept="return accept_click();"
  9.         ondialogcancel="return cancel_click();"
  10.         onload="window_load();">
  11.  
  12. <script>
  13. function window_load() {
  14.     document.documentElement.getButton("accept").focus();
  15. }
  16.  
  17. function accept_click() {
  18.     window.opener.setTimeout('Clipmarks_Save()', 50);
  19.     return true;
  20. }
  21.  
  22. function cancel_click() {
  23.     return true;
  24. }
  25. </script>
  26.  
  27. <image src="http://content.clipmarks.com/images/less_is_more_dialog_share.gif" width="300" height="331" />
  28.  
  29. </dialog>
  30.